1 # INAV Programming Framework
3 INAV Programming Framework (IPF) is a mechanism that allows you to to create
4 custom functionality in INAV. You can choose for certain actions to be done,
5 based on custom conditions you select.
7 Logic conditions can be based on things such as RC channel values, switches, altitude,
8 distance, timers, etc. The conditions you create can also make use of other conditions
9 you've entered previously.
10 The results can be used in:
12 * [Servo mixer](Mixer.md) to activate/deactivate certain servo mix rulers
13 * To activate/deactivate system overrides
15 INAV Programming Framework consists of:
17 * Logic Conditions - each Logic Condition can be understood as a single command, a single line of code. Each logic condition consists of:
18 * an operator (action), such as "plus" or "set vtx power"
19 * one or two operands (nouns), which the action acts upon. Operands are often numbers, such as a channel value or the distance to home.
20 * "activator" condition - optional. This condition is only active when another condition is true
21 * Global Variables - variables that can store values from and for Logic Conditions and servo mixer
22 * Programming PID - general purpose, user configurable PID controllers
24 IPF can be edited using INAV Configurator user interface, or via CLI. To use COnfigurator, click the tab labeled
25 "Programming". The various options shown in Configurator are described below.
31 `logic <rule> <enabled> <activatorId> <operation> <operand A type> <operand A value> <operand B type> <operand B value> <flags>`
33 * `<rule>` - ID of Logic Condition rule
34 * `<enabled>` - `0` evaluates as disabled, `1` evaluates as enabled
35 * `<activatorId>` - the ID of _LogicCondition_ used to activate this _Condition_. _Logic Condition_ will be evaluated only then Activator evaluates as `true`. `-1` evaluates as `true`
36 * `<operation>` - See `Operations` paragraph
37 * `<operand A type>` - See `Operands` paragraph
38 * `<operand A value>` - See `Operands` paragraph
39 * `<operand B type>` - See `Operands` paragraph
40 * `<operand B value>` - See `Operands` paragraph
41 * `<flags>` - See `Flags` paragraph
45 | Operation ID | Name | Notes |
46 |---------------|-------------------------------|-------|
47 | 0 | TRUE | Always evaluates as true |
48 | 1 | EQUAL | Evaluates `false` if `false` or `0` |
49 | 2 | GREATER_THAN | `true` if `Operand A` is a higher value than `Operand B` |
50 | 3 | LOWER_THAN | `true` if `Operand A` is a lower value than `Operand B` |
51 | 4 | LOW | `true` if `<1333` |
52 | 5 | MID | `true` if `>=1333 and <=1666` |
53 | 6 | HIGH | `true` if `>1666` |
54 | 7 | AND | `true` if `Operand A` and `Operand B` are the same value or both `true` |
55 | 8 | OR | `true` if `Operand A` and/or `OperandB` is `true` |
56 | 9 | XOR | `true` if `Operand A` or `Operand B` is `true`, but not both |
57 | 10 | NAND | `false` if `Operand A` and `Operand B` are both `true`|
58 | 11 | NOR | `true` if `Operand A` and `Operand B` are both `false` |
59 | 12 | NOT | The boolean opposite to `Operand A` |
60 | 13 | Sticky | `Operand A` is the activation operator, `Operand B` is the deactivation operator. After the activation is `true`, the operator will return `true` until Operand B is evaluated as `true`|
61 | 14 | Basic: Add | Add `Operand A` to `Operand B` and returns the result |
62 | 15 | Basic: Subtract | Substract `Operand B` from `Operand A` and returns the result |
63 | 16 | Basic: Multiply | Multiply `Operand A` by `Operand B` and returns the result |
64 | 17 | Basic: Divide | Divide `Operand A` by `Operand B` and returns the result |
65 | 18 | Set GVAR | Store value from `Operand B` into the Global Variable addressed by
66 `Operand A`. Bear in mind, that operand `Global Variable` means: Value stored in Global Variable of an index! To store in GVAR 1 use `Value 1` not `Global Variable 1` |
67 | 19 | Increase GVAR | Increase the GVAR indexed by `Operand A` (use `Value 1` for Global Variable 1) with value from `Operand B` |
68 | 20 | Decrease GVAR | Decrease the GVAR indexed by `Operand A` (use `Value 1` for Global Variable 1) with value from `Operand B` |
69 | 21 | Set IO Port | Set I2C IO Expander pin `Operand A` to value of `Operand B`. `Operand A` accepts values `0-7` and `Operand B` accepts `0` and `1` |
70 | 22 | OVERRIDE_ARMING_SAFETY | Allows the craft to arm on any angle even without GPS fix. WARNING: This bypasses all safety checks, even that the throttle is low, so use with caution. If you only want to check for certain conditions, such as arm without GPS fix. You will need to add logic conditions to check the throttle is low. |
71 | 23 | OVERRIDE_THROTTLE_SCALE | Override throttle scale to the value defined by operand. Operand type `0` and value `50` means throttle will be scaled by 50%. |
72 | 24 | SWAP_ROLL_YAW | basically, when activated, yaw stick will control roll and roll stick will control yaw. Required for tail-sitters VTOL during vertical-horizonral transition when body frame changes |
73 | 25 | SET_VTX_POWER_LEVEL | Sets VTX power level. Accepted values are `0-3` for SmartAudio and `0-4` for Tramp protocol |
74 | 26 | INVERT_ROLL | Inverts ROLL axis input for PID/PIFF controller |
75 | 27 | INVERT_PITCH | Inverts PITCH axis input for PID/PIFF controller |
76 | 28 | INVERT_YAW | Inverts YAW axis input for PID/PIFF controller |
77 | 29 | OVERRIDE_THROTTLE | Override throttle value that is fed to the motors by mixer. Operand is scaled in us. `1000` means throttle cut, `1500` means half throttle |
78 | 30 | SET_VTX_BAND | Sets VTX band. Accepted values are `1-5` |
79 | 31 | SET_VTX_CHANNEL | Sets VTX channel. Accepted values are `1-8` |
80 | 32 | SET_OSD_LAYOUT | Sets OSD layout. Accepted values are `0-3` |
81 | 33 | Trigonometry: Sine | Computes SIN of `Operand A` value in degrees. Output is multiplied by `Operand B` value. If `Operand B` is `0`, result is multiplied by `500` |
82 | 34 | Trigonometry: Cosine | Computes COS of `Operand A` value in degrees. Output is multiplied by `Operand B` value. If `Operand B` is `0`, result is multiplied by `500` |
83 | 35 | Trigonometry: Tangent | Computes TAN of `Operand A` value in degrees. Output is multiplied by `Operand B` value. If `Operand B` is `0`, result is multiplied by `500` |
84 | 36 | MAP_INPUT | Scales `Operand A` from [`0` : `Operand B`] to [`0` : `1000`]. Note: input will be constrained and then scaled |
85 | 37 | MAP_OUTPUT | Scales `Operand A` from [`0` : `1000`] to [`0` : `Operand B`]. Note: input will be constrained and then scaled |
86 | 38 | RC_CHANNEL_OVERRIDE | Overrides channel set by `Operand A` to value of `Operand B` |
87 | 39 | SET_HEADING_TARGET | Sets heading-hold target to `Operand A`, in degrees. Value wraps-around. |
88 | 40 | Modulo | Modulo. Divide `Operand A` by `Operand B` and returns the remainder |
89 | 41 | LOITER_RADIUS_OVERRIDE | Sets the loiter radius to `Operand A` [`0` : `100000`] in cm. If the value is lower than the loiter radius set in the **Advanced Tuning**, that will be used. |
90 | 42 | SET_PROFILE | Sets the active config profile (PIDFF/Rates/Filters/etc) to `Operand A`. `Operand A` must be a valid profile number, currently from 1 to 3. If not, the profile will not change |
91 | 43 | Use Lowest Value | Finds the lowest value of `Operand A` and `Operand B` |
92 | 44 | Use Highest Value | Finds the highest value of `Operand A` and `Operand B` |
93 | 45 | FLIGHT_AXIS_ANGLE_OVERRIDE | Sets the target attitude angle for axis. In other words, when active, it enforces Angle mode (Heading Hold for Yaw) on this axis (Angle mode does not have to be active). `Operand A` defines the axis: `0` - Roll, `1` - Pitch, `2` - Yaw. `Operand B` defines the angle in degrees |
94 | 46 | FLIGHT_AXIS_RATE_OVERRIDE | Sets the target rate (rotation speed) for axis. `Operand A` defines the axis: `0` - Roll, `1` - Pitch, `2` - Yaw. `Operand B` defines the rate in degrees per second |
95 | 47 | EDGE | Momentarily true when triggered by `Operand A`. `Operand A` is the activation operator [`boolean`], `Operand B` _(Optional)_ is the time for the edge to stay active [ms]. After activation, operator will return `true` until the time in Operand B is reached. If a pure momentary edge is wanted. Just leave `Operand B` as the default `Value: 0` setting. |
96 | 48 | DELAY | Delays activation after being triggered. This will return `true` when `Operand A` _is_ true, and the delay time in `Operand B` [ms] has been exceeded. |
97 | 49 | TIMER | A simple on - off timer. `true` for the duration of `Operand A` [ms]. Then `false` for the duration of `Operand B` [ms]. |
98 | 50 | DELTA | This returns `true` when the value of `Operand A` has changed by the value of `Operand B` or greater within 100ms. |
99 | 51 | APPROX_EQUAL | `true` if `Operand B` is within 1% of `Operand A`. |
103 | Operand Type | Name | Notes |
104 |---------------|-----------------------|-------|
105 | 0 | VALUE | Value derived from `value` field |
106 | 1 | GET_RC_CHANNEL | `value` points to RC channel number, indexed from 1 |
107 | 2 | FLIGHT | `value` points to flight parameter table |
108 | 3 | FLIGHT_MODE | `value` points to flight modes table |
109 | 4 | LC | `value` points to other logic condition ID |
110 | 5 | GVAR | Value stored in Global Variable indexed by `value`. `GVAR 1` means: value in GVAR 1 |
111 | 5 | PID | Output of a Programming PID indexed by `value`. `PID 1` means: value in PID 1 |
115 | Operand Value | Name | Notes |
116 |---------------|-------------------------------|-------|
117 | 0 | ARM_TIMER | in `seconds` |
118 | 1 | HOME_DISTANCE | in `meters` |
119 | 2 | TRIP_DISTANCE | in `meters` |
121 | 4 | VBAT | in `Volts * 100`, eg. `12.1V` is `1210` |
122 | 5 | CELL_VOLTAGE | in `Volts * 100`, eg. `12.1V` is `1210` |
123 | 6 | CURRENT | in `Amps * 100`, eg. `9A` is `900` |
124 | 7 | MAH_DRAWN | in `mAh` |
126 | 9 | GROUD_SPEED | in `cm/s` |
127 | 10 | 3D_SPEED | in `cm/s` |
128 | 11 | AIR_SPEED | in `cm/s` |
129 | 12 | ALTITUDE | in `cm` |
130 | 13 | VERTICAL_SPEED | in `cm/s` |
131 | 14 | TROTTLE_POS | in `%` |
132 | 15 | ATTITUDE_ROLL | in `degrees` |
133 | 16 | ATTITUDE_PITCH | in `degrees` |
134 | 17 | IS_ARMED | boolean `0`/`1` |
135 | 18 | IS_AUTOLAUNCH | boolean `0`/`1` |
136 | 19 | IS_ALTITUDE_CONTROL | boolean `0`/`1` |
137 | 20 | IS_POSITION_CONTROL | boolean `0`/`1` |
138 | 21 | IS_EMERGENCY_LANDING | boolean `0`/`1` |
139 | 22 | IS_RTH | boolean `0`/`1` |
140 | 23 | IS_LANDING | boolean `0`/`1` |
141 | 24 | IS_FAILSAFE | boolean `0`/`1` |
142 | 25 | STABILIZED_ROLL | Roll PID controller output `[-500:500]` |
143 | 26 | STABILIZED_PITCH | Pitch PID controller output `[-500:500]` |
144 | 27 | STABILIZED_YAW | Yaw PID controller output `[-500:500]` |
145 | 28 | 3D HOME_DISTANCE | in `meters`, calculated from HOME_DISTANCE and ALTITUDE using Pythagorean theorem |
146 | 29 | CROSSFIRE LQ | Crossfire Link quality as returned by the CRSF protocol |
147 | 30 | CROSSFIRE SNR | Crossfire SNR as returned by the CRSF protocol |
148 | 31 | GPS_VALID | boolean `0`/`1`. True when the GPS has a valid 3D Fix |
149 | 32 | LOITER_RADIUS | The current loiter radius in cm. |
150 | 33 | ACTIVE_PROFILE | integer for the active config profile `[1..MAX_PROFILE_COUNT]` |
151 | 34 | BATT_CELLS | Number of battery cells detected |
152 | 35 | AGL_STATUS | boolean `1` when AGL can be trusted, `0` when AGL estimate can not be trusted |
153 | 36 | AGL | integer Above The Groud Altitude in `cm` |
154 | 37 | RANGEFINDER_RAW | integer raw distance provided by the rangefinder in `cm` |
158 The flight mode operands return `true` when the mode is active. These are modes that you will see in the **Modes** tab. Note: the `USER*` modes are used by camera switchers, PINIO etc. They are not the Waypoint User Actions. See the [Waypoints](#waypoints) section to access those.
160 | Operand Value | Name | Notes |
161 |---------------|-------------------|-------|
162 | 0 | FAILSAFE | `true` when a **Failsafe** state has been triggered. |
163 | 1 | MANUAL | `true` when you are in the **Manual** flight mode. |
164 | 2 | RTH | `true` when you are in the **Return to Home** flight mode. |
165 | 3 | POSHOLD | `true` when you are in the **Position Hold** or **Loiter** flight modes. |
166 | 4 | CRUISE | `true` when you are in the **Cruise** flight mode. |
167 | 5 | ALTHOLD | `true` when you the **Altitude Hold** flight mode modifier is active. |
168 | 6 | ANGLE | `true` when you are in the **Angle** flight mode. |
169 | 7 | HORIZON | `true` when you are in the **Horizon** flight mode. |
170 | 8 | AIR | `true` when you the **Airmode** flight mode modifier is active. |
171 | 9 | USER1 | `true` when the **USER 1** mode is active. |
172 | 10 | USER2 | `true` when the **USER 2** mode is active. |
173 | 11 | COURSE_HOLD | `true` when you are in the **Course Hold** flight mode. |
174 | 12 | USER3 | `true` when the **USER 3** mode is active. |
175 | 13 | USER4 | `true` when the **USER 4** mode is active. |
176 | 14 | ACRO | `true` when you are in the **Acro** flight mode. |
177 | 15 | WAYPOINT_MISSION | `true` when you are in the **WP Mission** flight mode. |
181 | Operand Value | Name | Notes |
182 |---------------|-------------------------------|-------|
183 | 0 | Is WP | Boolean `0`/`1` |
184 | 1 | Current Waypoint Index | Current waypoint leg. Indexed from `1`. To verify WP is in progress, use `Is WP` |
185 | 2 | Current Waypoint Action | `true` when Action active in current leg. See ACTIVE_WAYPOINT_ACTION table |
186 | 3 | Next Waypoint Action | `true` when Action active in next leg. See ACTIVE_WAYPOINT_ACTION table |
187 | 4 | Distance to next Waypoint | Distance to next WP in metres |
188 | 5 | Distance from Waypoint | Distance from the last WP in metres |
189 | 6 | User Action 1 | `true` when User Action 1 is active on this waypoint leg [boolean `0`/`1`] |
190 | 7 | User Action 2 | `true` when User Action 2 is active on this waypoint leg [boolean `0`/`1`] |
191 | 8 | User Action 3 | `true` when User Action 3 is active on this waypoint leg [boolean `0`/`1`] |
192 | 9 | User Action 4 | `true` when User Action 4 is active on this waypoint leg [boolean `0`/`1`] |
193 | 10 | Next Waypoint User Action 1 | `true` when User Action 1 is active on the next waypoint leg [boolean `0`/`1`] |
194 | 11 | Next Waypoint User Action 2 | `true` when User Action 2 is active on the next waypoint leg [boolean `0`/`1`] |
195 | 12 | Next Waypoint User Action 3 | `true` when User Action 3 is active on the next waypoint leg [boolean `0`/`1`] |
196 | 13 | Next Waypoint User Action 4 | `true` when User Action 4 is active on the next waypoint leg [boolean `0`/`1`] |
199 #### ACTIVE_WAYPOINT_ACTION
202 |---------------|-------|
213 All flags are reseted on ARM and DISARM event.
215 | bit | Decimal | Function |
216 |-------|-----------|-----------|
217 | 0 | 1 | Latch - after activation LC will stay active until LATCH flag is reset |
218 | 1 | 2 | Timeout satisfied - Used in timed operands to determine if the timeout has been met |
224 `gvar <index> <default value> <min> <max>`
228 `pid <index> <enabled> <setpoint type> <setpoint value> <measurement type> <measurement value> <P gain> <I gain> <D gain> <FF gain>`
230 * `<index>` - ID of PID Controller, starting from `0`
231 * `<enabled>` - `0` evaluates as disabled, `1` evaluates as enabled
232 * `<setpoint type>` - See `Operands` paragraph
233 * `<setpoint value>` - See `Operands` paragraph
234 * `<measurement type>` - See `Operands` paragraph
235 * `<measurement value>` - See `Operands` paragraph
236 * `<P gain>` - P-gain, scaled to `1/1000`
237 * `<I gain>` - I-gain, scaled to `1/1000`
238 * `<D gain>` - D-gain, scaled to `1/1000`
239 * `<FF gain>` - FF-gain, scaled to `1/1000`
243 ### When more than 100 meters away, increase VTX power
244 ![screenshot of vtx home distance](./assets/images/vtx_home_distance.png)
246 ### When more than 600 meters away, engage return-to-home by setting the matching RC channel
247 ![screenshot of rth home distance](./assets/images/rth_home_distance.jpg)
250 ### Dynamic THROTTLE scale
252 `logic 0 1 0 23 0 50 0 0 0`
254 Limits the THROTTLE output to 50% when Logic Condition `0` evaluates as `true`
256 ### Set VTX power level via Smart Audio
258 `logic 0 1 0 25 0 3 0 0 0`
260 Sets VTX power level to `3` when Logic Condition `0` evaluates as `true`
262 ### Invert ROLL and PITCH when rear facing camera FPV is used
264 Solves the problem from [https://github.com/iNavFlight/inav/issues/4439](https://github.com/iNavFlight/inav/issues/4439)
267 logic 0 1 0 26 0 0 0 0 0
268 logic 1 1 0 27 0 0 0 0 0
271 Inverts ROLL and PITCH input when Logic Condition `0` evaluates as `true`. Moving Pitch stick up will cause pitch down (up for rear facing camera). Moving Roll stick right will cause roll left of a quad (right in rear facing camera)
273 ### Cut motors but keep other throttle bindings active
275 `logic 0 1 0 29 0 1000 0 0 0`
277 Sets throttle output to `0%` when Logic Condition `0` evaluates as `true`
279 ### Set throttle to 50% and keep other throttle bindings active
281 `logic 0 1 0 29 0 1500 0 0 0`
283 Sets throttle output to about `50%` when Logic Condition `0` evaluates as `true`
285 ### Set throttle control to different RC channel
287 `logic 0 1 0 29 1 7 0 0 0`
289 If Logic Condition `0` evaluates as `true`, motor throttle control is bound to RC channel 7 instead of throttle channel
291 ### Set VTX channel with a POT
293 Set VTX channel with a POT on the radio assigned to RC channel 6
296 logic 0 1 -1 15 1 6 0 1000 0
297 logic 1 1 -1 37 4 0 0 7 0
298 logic 2 1 -1 14 4 1 0 1 0
299 logic 3 1 -1 31 4 2 0 0 0
303 1. Normalize range `[1000:2000]` to `[0:1000]` by substracting `1000`
304 2. Scale range `[0:1000]` to `[0:7]`
305 3. Increase range by `1` to have the range of `[1:8]`
306 4. Assign LC#2 to VTX channel function
308 ### Set VTX power with a POT
310 Set VTX power with a POT on the radio assigned to RC channel 6. In this example we scale POT to 4 power level `[1:4]`
313 logic 0 1 -1 15 1 6 0 1000 0
314 logic 1 1 -1 37 4 0 0 3 0
315 logic 2 1 -1 14 4 1 0 1 0
316 logic 3 1 -1 25 4 2 0 0 0
320 1. Normalize range [1000:2000] to [0:1000] by substracting `1000`
321 2. Scale range [0:1000] to [0:3]
322 3. Increase range by `1` to have the range of [1:4]
323 4. Assign LC#2 to VTX power function
325 ## Common issues / questions about IPF
327 One common mistake involves setting RC channel values. To override (set) the
328 value of a specific RC channel, choose "Override RC value", then for operand A
329 choose *value* and enter the channel number. Choosing "get RC value" is a common mistake,
330 which does something other than what you probably want.
332 ![screenshot of override an RC channel with a value](./assets/images/ipf_set_get_rc_channel.png)